home *** CD-ROM | disk | FTP | other *** search
/ Popular Request / By Popular Request (Arsenal Computer)(SysOptics Distribution System).ISO / amiga4 / sclk1_72.lha / SClock / Source / misc / sc_create.c < prev    next >
C/C++ Source or Header  |  1993-12-07  |  590b  |  43 lines

  1. /* The magic "SinCos" creator! */
  2.  
  3. #include <exec/types.h>
  4.  
  5. #include <stdio.h>
  6. #include <stdlib.h>
  7. #include <time.h>
  8. #include <math.h>
  9.  
  10. void main(void)
  11. {
  12.     UWORD a;
  13.     WORD val;
  14.  
  15.     printf("WORD SinTab[60] =\n{\n\t");
  16.  
  17.     for (a=0; a<360; a+=6)
  18.     {
  19.         val = (sin((a / 180.0) * 3.14159) * 1024);
  20.  
  21.         printf("%d, ", val);
  22.  
  23.         if (((a + 1) % 7) == 0)
  24.             printf("\n\t");
  25.     }
  26.  
  27.     printf("\n}\n\nWORD CosTab[60] =\n{\n\t");
  28.  
  29.     for (a=0; a<360; a+=6)
  30.     {
  31.         val = (cos((a / 180.0) * 3.14159) * 1024);
  32.  
  33.         printf("%d, ", val);
  34.  
  35.         if (((a + 1) % 7) == 0)
  36.             printf("\n\t");
  37.     }
  38.  
  39.     printf("\n}\n");
  40. }
  41.  
  42. /* End Of File */
  43.